home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 8: LINUX Games / Linux Cubed Series 8 - LINUX Games.iso / games / x11 / rpg / crossfir.92 / crossfir / crossfire-0.92.5 / doc / spoiler / weap-extract < prev   
Text File  |  1996-07-24  |  186b  |  7 lines

  1. # This awk-script will find and print out all of the 'normal' 
  2. # weapons that have an additional magical effect - e.g. stake..
  3.  
  4. $4 ~ /[A-Za-z]/ {
  5.     printf(" %s & - & %s \\\\\n",$3,$4);
  6. }
  7.